home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 26.zip / BS1 part 26 / Aztec C v5.2a disk 4.adf / 204inc_h.lzh / graphics / graphint.h < prev    next >
C/C++ Source or Header  |  1991-03-14  |  536b  |  30 lines

  1. #ifndef    GRAPHICS_GRAPHINT_H
  2. #define    GRAPHICS_GRAPHINT_H
  3. /*
  4. **    $Filename: graphics/graphint.h $
  5. **    $Release: 2.04 $
  6. **    $Revision: 37.0 $
  7. **    $Date: 91/01/07 $
  8. **
  9. **
  10. **
  11. **    (C) Copyright 1985,1986,1987,1988,1989 Commodore-Amiga, Inc.
  12. **        All Rights Reserved
  13. */
  14.  
  15. #ifndef EXEC_NODES_H
  16. #include <exec/nodes.h>
  17. #endif
  18.  
  19. /* structure used by AddTOFTask */
  20. struct Isrvstr
  21. {
  22.     struct Node is_Node;
  23.     struct Isrvstr *Iptr;   /* passed to srvr by os */
  24.     int (*code)();
  25.     int (*ccode)();
  26.     int Carg;
  27. };
  28.  
  29. #endif    /* GRAPHICS_GRAPHINT_H */
  30.